home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Commodore Disk User Volume 1 #6
/
Commodore_Disk_User_Vol.1_6_1988_-.d64
/
dec_hex convert
(
.txt
)
< prev
next >
Wrap
Commodore BASIC
|
2022-10-26
|
174b
|
8 lines
10 input"number in decimal";dec:ifdec>65535thenprint"too big":goto10
20 f=4096:fora=1to4
30 d%=dec/f:dec=dec-d%*f
40 d%=d%+48:ifd%>57thend%=d%+7
50 hx$=hx$+chr$(d%):f=f/16
60 next
70 print"$"hx$